home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -serious- / programming / other / tandem / teaching / 5.asm < prev    next >
Assembly Source File  |  1999-09-06  |  157b  |  10 lines

  1. * 5.asm    Pseudo op example         version 0.00   1.9.97
  2.  
  3.  move.l fred,d0
  4.  move.l d0,bill ;initialise bill
  5.  move.l bill,d1
  6.  rts
  7.  
  8. fred: dc.l 4
  9. bill: ds.l 1
  10.